Thinkstat 筆記 Chapter1

在學習python的過程中意外發現thinkstat,剛好是我對其很好奇的喔林學院的Allen B. Downey教授寫的書,頁數少的書感覺真是棒透了,讓我們開始吧!

Statistical thinking for programmers 統計思維for 程序猿

基本上本章很簡單,依範例做就好了,首先我們要把範例程式碼、分析用資料放到同個資料夾。 我們要探討的問題是:“第一胎是不是會比較早生” 教授幫我們把很多需要用到的module包裝好了,下面的程式碼用來確認我們是不是有相同的資料:


In [3]:
import survey

table = survey.Pregnancies()
table.ReadRecords()
print 'Number of pregnancies', len(table.records)


Number of pregnancies 13593

參考資料

  1. 課程網頁
  2. 書本網頁